(ucs-insert): Fix the error message.
authorKenichi Handa <handa@m17n.org>
Mon, 29 Mar 2004 12:05:16 +0000 (12:05 +0000)
committerKenichi Handa <handa@m17n.org>
Mon, 29 Mar 2004 12:05:16 +0000 (12:05 +0000)
lisp/international/ucs-tables.el

index a7d05610a80c7730bbe1d9262bd764f41dc34295..5574cf3d954e6dd18225793e82c863344a656d78 100644 (file)
@@ -1249,7 +1249,7 @@ Interactively, prompts for a hex string giving the code."
   (interactive "sUnicode (hex): ")
   (or (integerp arg)
       (setq arg (string-to-number arg 16)))
-  (let ((c (decode-char 'ucs arg )))
+  (let ((c (decode-char 'ucs arg)))
     (if c
        (insert c)
       (if (or (< arg 0) (> arg #x10FFFF))